home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE4 / ZAP / !Zap / Modules / !ZapJRF / UK / HelpData
Text File  |  2002-05-08  |  1KB  |  34 lines

  1. | ***************************************************************
  2. | *                      ZapJRF extensions                      *
  3. | ***************************************************************
  4.  
  5. | Commands
  6.  
  7. JRF_IF
  8. Conditional execution on contents of cursor location.
  9. Parameters : <break><compare><break><then clause>
  10.         or : <break><compare><break><break><else clause>
  11.         or : <break><compare><break><then clause><break><else clause>
  12.  
  13. RUNSCRIPT
  14. Executes a script file. Special functions available in script files :
  15. #IfText "<text>"
  16.   Conditional execution on matching some text (case insensitive). Use |<char>
  17.   to insert control characters, || for a literal | and |" for a literal ".
  18. #IfMode <mode>[{,<mode>}]
  19.   Conditional execution on being in a particular mode.
  20. #IfModeN <mode>[{,<mode>}]
  21.   Conditional execution on being in a particular mode, given the mode names.
  22. #Else
  23.   Invert current conditional execution (may be used multiple times in a
  24.   structure, though why you'd do that I don't know)
  25. #EndIf
  26.   End contitional execution structure.
  27. | <anything>
  28.   Comment - ignored. (This is subject to change)
  29. #ScriptEnd
  30.   Marks the end of the script (only really needed for JRF_SCRIPTADDR)
  31. #Stop
  32.   Ends execution of the script.
  33. | End
  34.